home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 583 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.1 KB

  1. Path: news.worldlinx.com!stupy
  2. From: stupy@freenet.durham.org (Steve Tupy)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: [Q]Borland C++ Command-Line Compile
  5. Date: 5 Jan 1996 06:01:04 GMT
  6. Organization: Durham Free-Net
  7. Message-ID: <4cier0$ii5@news.worldlinx.com>
  8. References: <4bkuc7$1ji@nuscc.nus.sg>
  9. NNTP-Posting-Host: freenet.durham.org
  10. X-Newsreader: TIN [version 1.2 PL2]
  11.  
  12. Benedict CHNG (chngchi1@iscs.nus.sg) wrote:
  13. : After creating an application using the AppExpert in Borland C++ 4.5, I 
  14. : compile my program using Build All but it takes more than 20 minutes on 
  15. : my machine! I think all this is due to extensive swappings to my harddisk.
  16.  
  17. : So I've decided to use the command-line compiler BCC.EXE but how do I do 
  18. : it - I mean what are all the parameters that I'll have to key in?
  19.  
  20. : Also, how come the generated code is so big (almost 1.5 Megs in size)?
  21.  
  22.  
  23. You are including what is known as debug info. This aids in debugging but
  24. will not be necessary in the final program. You can turn it off in the
  25. project manager and will significantly reduce Exe size. Leave it in there
  26. for now, though, as it greatly aids in development.
  27.  
  28.  
  29. --
  30. Steve
  31.